body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #000000;
  }
  
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .btn-hero a{
    text-decoration: none;
    color: #fdfafd;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background-color: #000000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 10px;
    border-radius: 10px;
  }
  
  .navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    font-family: zen dots;
    
    
  }
  .navbar .logo img{
      padding: 10px;
      width: 20px;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
  }
  
  .btn-book {
    padding: 0.5rem 1.5rem;
    background-color: #fdfafd;
    color: #000000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
  }
  
  /* Sidebar Styles */
  .sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background-color: #000000;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
    border-top-right-radius:50%;
    border-bottom-right-radius: 50%;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .sidebar ul {
    list-style: none;
    padding: 2rem;
    text-align: left;
  }
  
  .sidebar ul li {
    margin: 1.5rem 0;
  }
  
  .sidebar ul li a, .sidebar ul li button {
    font-size: 1.2rem;
    text-decoration: none;
    color: #ffffff;
  }
  
  .hamburger-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.71), rgba(183, 183, 183, 0.074)), 
                url('images/pexels-media-6285171.jpeg') center/cover no-repeat;
    min-height: 100vh;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    font-size: 1rem;
    margin: 1.5rem 0;
  }
  
  .btn-hero {
    padding: 0.7rem 2rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 30px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
  
    .hamburger-menu {
      display: block;
    }
  
    .hero-text h1 {
      font-size: 2rem;
    }
  
    .hero-text p {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 1.5rem;
    }
  
    .hero-text p {
      font-size: 0.8rem;
    }
  }
  .hamburger-menu {
    display: none; /* Hidden by default on large screens */
    font-size: 2.8rem; /* Size of the icon */
    color: #ffffff; /* Icon color */
    cursor: pointer;
    position: relative; /* Allows easier positioning in the navbar */
    z-index: 1100; /* Above sidebar */
  }
  
  /* Make Hamburger Visible on Mobile Screens */
  @media (max-width: 768px) {
    .hamburger-menu {
      display: block; /* Visible on smaller screens */
    }
  }
  h1 {
    text-align: center;
    margin: 1rem 0;
  }
  
  p {
    text-align: center;
    margin: 0.5rem 1rem;
  }
  
  
  
  /* About Section */
  .about-section {
    padding: 2rem;
    background-color: #f5f5f5;
  }
  
  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }
  
  .image-gallery img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Services Section */
  .services-section {
    padding: 2rem;
    background-color: #000000;
    color: #f5f5f5;
    margin: 10px;
    border-radius: 10px;
  }
  
  /* Pricing Section */
  .pricing-section {
    padding: 2rem;
    background-color: #f5f5f5;
  }
  
  .pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .pricing-card {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-card h2 {
    color: #000000;
  }
  
  .pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }
  
  .pricing-card li {
    margin: 0.5rem 0;
  }
  
  .pricing-card button {
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.5rem 1.5rem;
    cursor: pointer;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  
  .footer-links a {
    color: #fefae0;
    margin: 0 1rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      gap: 0.5rem;
    }
  
    .pricing-container {
      grid-template-columns: 1fr;
    }
  }
  
  h8 {
    font-style: normal;
   display: flex;
   width: auto;
   margin:10px ;
   
  }